//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
namespace LargoCommon.Music
{
/// Type of melodic part.
public enum MelodicShape {
/// Type of part.
None = 0,
/// Type of part.
MinimumMotion = 1,
/// Type of part.
Scales = 2,
/// Type of part.
Sinusoids = 3,
/// Type of part.
BreakingLine = 4,
/// Type of part.
Original = 5
}
}